home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Languages / RLaB 1.18c / README.plplot < prev    next >
Encoding:
Text File  |  1994-09-08  |  2.3 KB  |  64 lines  |  [TEXT/ttxt]

  1.     README.PLPLOT:
  2.  
  3.     Beginning with version 0.96, RLaB has built-in plotting
  4.     support. This support can only be utilized if you have the
  5.     Plplot library installed on your system. Plplot is good stuff,
  6.     not only for RLaB. So, if you don't have it already it is
  7.     definitely worthwhile. You can get it at dino.ph.utexas.edu in
  8.     the plplot directory. In order to use the plplot libraries
  9.     with RLaB you must make and install the DOUBLE PRECISION
  10.     version of plplot. RLaB's configure will look for either
  11.     libplplotdX.a or libplplotdtk.a, and configure accordingly. It
  12.     is also recommended that you install the Plplot distribution
  13.     in its own directory, as opposed to putting it in
  14.     /usr/local/bin, /usr/local/lib, etc... At the bottom of this
  15.     file are some recommended options for running Plplot's
  16.     configure. 
  17.  
  18.     If you do not have the plplot libraries installed on your
  19.     system, then RLaB will configure itself to use the Gnuplot
  20.     plot interface.
  21.  
  22.     You can get help on plotting by typing `help plot' at the RLaB
  23.     prompt (if you compiled RLaB to use Plplot). The RLaB Primer
  24.     has an introduction to plotting, and there are several
  25.     plotting examples in the examples directory.
  26.  
  27.     The Plplot plotting has been implemented as a set of low-level
  28.     interface functions to the Plplot API. These functions mimic
  29.     the Plplot API, and provide access to most of the Plplot
  30.     features. The best way to understand this setup is to read the
  31.     Plplot manual, and use the file misc/plplot.r as a
  32.     reference. 
  33.  
  34.     The user plot interface is fairly high level. It consists of
  35.     plot functions written in RLaB that use the low-level
  36.     interface. This design works well - it provides the causal
  37.     user with an easy-to-use plot capability, and the more
  38.     in-depth user with the ability to create many different types
  39.     of plots.
  40.  
  41.     Enjoy,
  42.     Ian Searle
  43.  
  44.  
  45.     Recommended Plplot Configuration Usage. As you will note,
  46.     Plplot intallation is the same on most systems, at least the
  47.     ones I have tried.
  48.  
  49.     SVR4/386:
  50.     configure --with-double --prefix=/usr/local/plplot --without-shlib \
  51.         --disable-f77 --with-gcc
  52.  
  53.     Solaris 2.3 (SunOS-5.3)
  54.         configure --with-double --without-shlib --disable-f77 \
  55.                 --prefix=/usr/local/plplot
  56.  
  57.     SunOS-4.1.3
  58.     configure --with-double --prefix=/usr/local/plplot --without-shlib \
  59.         --disable-f77 --with-gcc
  60.  
  61.     HP-UX:
  62.     configure --with-double --prefix=/usr/local/plplot --without-shlib \
  63.         --disable-f77
  64.